rank | frequency | n-gram |
---|---|---|
1 | 12360 | -s |
2 | 7965 | -e |
3 | 5266 | -n |
4 | 5251 | -d |
5 | 4539 | -y |
rank | frequency | n-gram |
---|---|---|
1 | 3472 | -ed |
2 | 3306 | -ng |
3 | 2707 | -es |
4 | 2634 | -on |
5 | 2194 | -er |
rank | frequency | n-gram |
---|---|---|
1 | 3132 | -ing |
2 | 1744 | -ion |
3 | 886 | -ted |
4 | 820 | -ers |
5 | 710 | -ent |
rank | frequency | n-gram |
---|---|---|
1 | 1429 | -tion |
2 | 637 | -ting |
3 | 534 | -ions |
4 | 365 | -ment |
5 | 356 | -ated |
rank | frequency | n-gram |
---|---|---|
1 | 931 | -ation |
2 | 429 | -tions |
3 | 197 | -ction |
4 | 195 | -ating |
5 | 160 | -ional |
The tables show the most frequent letter-N-grams at the ending of words for N=1…5. Everything runs in parallel to 2.2.5 Most frequent word beginnings. The aim is suffix detection instead of affix detection.
For N=3:
SELECT @pos:=(@pos+1), xx.* from (SELECT @pos:=0) r, (select count(*) as cnt ,concat("-", right(word,3)) FROM words WHERE w_id>100 group by right(word,3) order by cnt desc) xx limit 5;
2.2.5 Most frequent word beginnings